4129838e364fc77d82d0ffb9015522fe1729e234,Mage/src/mage/abilities/keyword/MonstrosityAbility.java,MonstrosityAbility,getRule,#,80
Before Change
@Override
public String getRule() {
return new StringBuilder(manaCosts.getText()).append(": Monstrosity ").append(monstrosityValue)
.append(". <i>(If this creature isn't monstrous, put ").append(CardUtil.numberToText(monstrosityValue))
.append(" +1/+1 counters on it and it becomes monstrous.)</i>").toString();
}
After Change
return new StringBuilder(manaCosts.getText()).append(": Monstrosity ")
.append(monstrosityValue == Integer.MAX_VALUE ? "X":monstrosityValue)
.append(". <i>(If this creature isn't monstrous, put ")
.append(monstrosityValue == Integer.MAX_VALUE ? "X":CardUtil.numberToText(monstrosityValue))
.append(" +1/+1 counters on it and it becomes monstrous.)</i>").toString();
}